home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- BackColor = &H00C0C0C0&
- BorderStyle = 1 'Fixed Single
- Caption = "Demo"
- ClientHeight = 3795
- ClientLeft = 1275
- ClientTop = 1635
- ClientWidth = 5490
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 13.5
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- ForeColor = &H00000000&
- Height = 4200
- Left = 1215
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3795
- ScaleWidth = 5490
- Top = 1290
- Width = 5610
- Begin PictureBox Panel3D2
- BackColor = &H00FF0000&
- FontBold = -1 'True
- FontItalic = -1 'True
- FontName = "MS Sans Serif"
- FontSize = 13.5
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- ForeColor = &H00FFFFFF&
- Height = 612
- Left = 600
- ScaleHeight = 585
- ScaleWidth = 4305
- TabIndex = 0
- Top = 240
- Width = 4332
- End
- Begin PictureBox Panel3D1
- BackColor = &H00C0C0C0&
- Height = 336
- Left = 600
- ScaleHeight = 300
- ScaleWidth = 1665
- TabIndex = 2
- Top = 1200
- Width = 1692
- Begin ComboBox Combo1
- Height = 288
- Left = 24
- TabIndex = 1
- Text = "Combo1"
- Top = 24
- Width = 1644
- End
- End
- Begin CommandButton Command1
- Caption = "&End"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 13.5
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 492
- Left = 3600
- TabIndex = 3
- Top = 3000
- Width = 1332
- End
- Sub Combo1_DropDown ()
- calendar combo1
- End Sub
- Sub Command1_Click ()
- End
- End Sub
- Sub Form_Load ()
- ' ==========================================
- ' Loading the 'Date Tracker' form here is
- ' unnecessary, but makes the first call
- ' as fast/slow as all subsequent calls.
- ' ==========================================
- Load frmCalendar
- ' Initialize date in combo box.
- ' -----------------------------
- combo1.Text = Format$(Now, "dd-mmm-yyyy")
- End Sub
-